home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / ip / dns / rovers / Ctools / Makefile < prev    next >
Encoding:
Makefile  |  1991-05-12  |  154 b   |  14 lines

  1. #
  2. #        Internet Rover miscellaneous "C" Tools
  3. #
  4. CFLAGS=-g
  5.  
  6. all:
  7.     make ctools.o
  8.  
  9. ctools.o:    ctools.c ctools.h
  10.     cc $(CFLAGS) -c ctools.c
  11.  
  12. clean:
  13.     -rm *.o core
  14.